home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / SOUND.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-05  |  311 b   |  13 lines

  1. /* SOUND.C --- p. 674 */
  2. #include <dos.h>
  3. void main()
  4. {
  5.     unsigned duration, frequency;
  6.     printf("Enter frequency of sound(in Hz): ");
  7.     scanf(" %u", &frequency);
  8.     printf("Enter duration of 440-Hz tone (in milliseconds): ");
  9.     scanf(" %u", &duration);
  10.     sound(frequency);
  11.     delay(duration);
  12.     nosound();
  13. }